From 64dacd01675249bd819e0e861b83456c69fd0153 Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Tue, 25 May 1993 14:15:30 +0000 Subject: [PATCH] * configure.in: When looking for source in the same directory as the configure script, make the path thus discovered absolute. If the user specifies the `--srcdir' switch, make that directory absolute too. --- configure1.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure1.in b/configure1.in index df41927674b..1238db91d6d 100755 --- a/configure1.in +++ b/configure1.in @@ -286,7 +286,7 @@ case "${srcdir}" in "" ) confdir=`echo $0 | sed 's|//|/|' | sed 's|/[^/]*$||'` if [ -f $confdir/src/lisp.h -a -f $confdir/lisp/version.el ]; then - srcdir=$confdir + srcdir=`(cd $confdir ; pwd)` else if [ -f "./src/lisp.h" -a -f "./lisp/version.el" ]; then srcdir=`pwd` @@ -309,6 +309,7 @@ sources may be found." ## Otherwise, check if the directory they specified is okay. * ) + srcdir=`(cd ${srcdir}; pwd)` if [ ! -d "${srcdir}" -o ! -f "${srcdir}/src/lisp.h" -o ! -f "${srcdir}/lisp/version.el" ]; then (echo "\ ${progname}: The directory specified with the \`--srcdir' option, -- 2.30.2